home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / demos / signal / iirfilt.dem < prev    next >
Text File  |  1999-09-16  |  535b  |  20 lines

  1. ////////////////////////
  2. //DISCRETE IIR FILTERS//
  3. ////////////////////////
  4.  
  5. //Low pass filter (length 5, type cheb1, cut-off .2)
  6.    hz=iir(5,'lp','cheb1',[.2 0],[.05 .05]);
  7.    [hzm,fr]=frmag(hz,256);
  8.    plot2d(fr',hzm')
  9.    xtitle('Discrete IIR filter : low pass  fr <0.2',' ',' ');
  10.    halt()
  11.    xbasc(); 
  12. //Band pass filter (length 3, type ellip, cut-offs .15 and .25)
  13.    hz=iir(3,'bp','ellip',[.15 .25],[.08 .03]);
  14.    [hzm,fr]=frmag(hz,256);
  15.    plot2d(fr',hzm')
  16.    xtitle('Discrete IIR filter band pass  0.15<fr<0.25 ',' ',' ');
  17.  
  18.  
  19.  
  20.